home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1995 April / Electronic Clipper 1995-04.iso / pc / pc_users / ideasrc / setup / samples / prototyp.hp < prev    next >
Text File  |  1993-03-24  |  857b  |  36 lines

  1.  
  2. // ---------------------------------------------------------------------
  3. //
  4. // PROTOTYP.HP  - QuickTime for Windows Sample Decompressor
  5. //
  6. //                Version 1.1
  7. //
  8. //                (c) 1988-1993 Apple Computer, Inc. All Rights Reserved.
  9. //
  10. // ---------------------------------------------------------------------
  11.  
  12.  
  13. #if !defined __PROTOTYP_HP
  14. #define __PROTOTYP_HP
  15.  
  16. // Compiler header files
  17. #include <stdlib.h>
  18.  
  19. // Application header files
  20. #include <qtcodec.h>
  21.  
  22. // Data definitions
  23.  
  24. // C++ Functions
  25. HINSTANCE GetInstOfThisMod() ;
  26.  
  27. // Assembler functions
  28. extern "C" {
  29. VOID PASCAL DecompressRaw16( LPVOID lpCompressed
  30.                            , LPVOID lpUncompressed
  31.                            , DWORD dwBufferSize
  32.                            ) ;
  33. }                                           // extern "C"
  34.  
  35. #endif
  36.